home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / 32QUERY.PAK / QRY_DATA.C < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  37 lines

  1. // BDE32 3.x - (C) Copyright 1996 by Borland International
  2.  
  3. #include "query.h"
  4.  
  5. const pCHAR  szAppName = "Query";
  6. const pCHAR  szDialogName = "QueryDlg";
  7. const pCHAR  szConnectDialogName = "CONNECTDLG";
  8. HWND         hMainWnd;
  9. HINSTANCE    hInst;
  10. WNDPROC      _wpOrigWndProc;
  11. WNDPROC      _wpOrigWndProc1;
  12.  
  13. CHAR         szTblDirectory[DBIMAXPATHLEN+1];
  14. CHAR         szPrivDirectory[DBIMAXPATHLEN+1];
  15.  
  16. // Help text for main dialog box
  17.  
  18. pCHAR szMainHelpText =
  19.     "This program demonstrates the query functionality of the"
  20.     " Borland Database Engine. SQL or QBE queries typed in the"
  21.     " query edit box can be run, and the results can be viewed"
  22.     " in the Result window or saved to disk. Also, SQL or QBE"
  23.     " Queries can be loaded from the disk or saved to disk. For"
  24.     " additional information, see the QUERY.TXT file in this"
  25.     " program's directory.";
  26.  
  27. // Help text for connect dialog box
  28.  
  29. pCHAR szConnectHelpText =
  30.     "This Connection dialog box lists the aliases that you set up"
  31.     " using IDAPICFG.  A standard database is opened and maintained"
  32.     " by default.  To add remote connections, select the alias you"
  33.     " want to use, enter the password for your account in the Password"
  34.     " edit control, and press Connect.  To remove connections, select"
  35.     " the connection from the Connection list and press Remove.  This"
  36.     " program will maintain up to five database connections.";
  37.